Uncheck OSLC Link Query

Hi all and sorry for the spam,
 
My customer is looking for a way of automate the operation of UNCHECKING the option in the attached image in order to avoid automatic link discovery, this is causing performance problems and unchecking this option the performance is substantially improved. 
 
The customer wants to automate this because they want to do it for all the DOORS clients they have, +1000 DOORS Clients.
 
We are looking for a dxl, a windows registry key, or something else we can use to automate it.
 
Many thanks in advance for your help,
Francisco.

 

 


Francisco Lopez - Thu Jun 08 05:17:16 EDT 2017

Re: Uncheck OSLC Link Query
Mathias Mamsch - Thu Jun 08 06:10:23 EDT 2017

It seems this is a Database Option, not a client setting? In this case you will save no time by automation, you just need to deactivate this option once per server? Regards, Mathias

Re: Uncheck OSLC Link Query
Francisco Lopez - Thu Jun 08 08:07:55 EDT 2017

Mathias Mamsch - Thu Jun 08 06:10:23 EDT 2017

It seems this is a Database Option, not a client setting? In this case you will save no time by automation, you just need to deactivate this option once per server? Regards, Mathias

Mathias,

Thanks for your answer, but as far as I know this is included in the options dialog and usually the settings included in that dialog are specific to each user.

Regards,

Paco

Re: Uncheck OSLC Link Query
pommCannelle - Thu Jun 08 08:31:26 EDT 2017

Francisco Lopez - Thu Jun 08 08:07:55 EDT 2017

Mathias,

Thanks for your answer, but as far as I know this is included in the options dialog and usually the settings included in that dialog are specific to each user.

Regards,

Paco

(

If you can not find the DXL command to do it ... and if you do not have any allergy problem ... 

You can use a third app to do the clic ... like autoIT: 20 minutes with a proper tutorial (download and installation included ;D)

Then use the startup files to launch your autoIT tool !

Have fun ! 

)

 

Re: Uncheck OSLC Link Query
Mathias Mamsch - Mon Jun 12 03:46:05 EDT 2017

Francisco Lopez - Thu Jun 08 08:07:55 EDT 2017

Mathias,

Thanks for your answer, but as far as I know this is included in the options dialog and usually the settings included in that dialog are specific to each user.

Regards,

Paco

Sorry I misread the screenshot, because I never saw this option before (we dont use OSLC). Anyway, if you do not succeed with AutoIT (which is probably a good choice), can you try the following: 

string name = "My Server Name"; 
OSLCServer server
if (oslcLinkQuery_getServerByName(name, server)) {
    setCurrentUserAutoLinkQuery(server, false /* disable checkbox */, true /* save */)
    print "Success!?"; 
}else {
    print "No luck!"; 
}

Regards, Mathias